Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/27 - Memory Matching Game/

assets /cody/swapnilsparsh/30DaysOfJavaScript/27 - Memory Matching Game/assets/
1 Items
  • memory.png
  • font /cody/swapnilsparsh/30DaysOfJavaScript/27 - Memory Matching Game/font/
    1 Items
  • sans.ttf
  • index.html /cody/swapnilsparsh/30DaysOfJavaScript/27 - Memory Matching Game/index.html
    441 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge"
    script.js /cody/swapnilsparsh/30DaysOfJavaScript/27 - Memory Matching Game/script.js
    235 Views
    0 Comments
    const container = document.getElementById('container');
    const cardslength = 12;
    const cards = [];

    let previousShownCard = undef
    style.css /cody/swapnilsparsh/30DaysOfJavaScript/27 - Memory Matching Game/style.css
    179 Views
    0 Comments
    * {
    box-sizing: border-box;
    font-family: "sans";
    user-select:none; /*for the user not to pull the card with the mouse*/
    }